Skip to content

重命名文件 - RenameFile

函数简介

重命名或移动指定文件。

接口名称

RenameFile

DLL调用

c
int RenameFile(long instance, string src, string dst);

参数说明

参数名类型说明
instance长整数型OLAPlug对象的指针,由 CreateCOLAPlugInterFace 接口生成。
src字符串原文件完整路径。
dst字符串新文件完整路径(可包含新的目录或文件名)。

示例

SDK 调用

cpp
#include "OLAPlugServer.h"

OLAPlugServer ola;
int ret = ola.RenameFile("value", "value");
csharp
using OLAPlug;

var ola = new OLAPlugServer();
int ret = ola.RenameFile("value", "value");
python
from OLAPlugServer import OLAPlugServer

ola = OLAPlugServer()
ret = ola.RenameFile("value", "value")
java
import com.olaplug.OLAPlugServer;

OLAPlugServer ola = new OLAPlugServer();
int ret = ola.RenameFile("value", "value");
cpp
var ola = com("OlaPlug.OlaSoft")
var ret = ola.RenameFile("value", "value")
vbscript
Set ola = CreateObject("OlaPlug.OlaSoft")
ret = ola.RenameFile("value", "value")
text
.局部变量 ola, OLAPlug
ola.创建 ()
ret = ola.RenameFile(“value”, “value”)
aardio
import OLAPlugServer;
var ola = OLAPlugServer();
var ret = ola.RenameFile("value", "value");
text
变量 ola <类型 = OLAPlugServer>
ola = 新建 OLAPlugServer
整数 ret = ola.RenameFile("value", "value")
cpp
#include "OLAPlugServer.h"

OLAPlugServer ola;
int32_t ret = ola.RenameFile("value", "value");

原生 DLL 调用

cpp
long instance = CreateCOLAPlugInterFace();
RenameFile(instance, "value", "value");
csharp
using System.Runtime.InteropServices;
using System.Text;

[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern long CreateCOLAPlugInterFace();
[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern int RenameFile(long ola, string src, string dst);

long instance = CreateCOLAPlugInterFace();
RenameFile(instance, "value", "value");
python
from ctypes import CDLL, c_int, c_int64, create_string_buffer

ola = CDLL("OLAPlug_x64.dll")
ola.CreateCOLAPlugInterFace.restype = c_int64
instance = ola.CreateCOLAPlugInterFace()
ola.RenameFile(instance, "value", "value")

返回值

1 成功,0 失败。

注意事项

  • 若目标文件已存在,行为取决于底层实现(可能覆盖或失败)。